Skip to main content

DSV Library

Type

library

Description

This script library implements portions of the specification for Delimiter-Separated Values (DSV), as outlined in RFC 4180. Utilize this library to seamlessly import and export tabular data formats such as CSV (Comma-Separated Values), TSV (Tab-Separated Values), and similar formats.

Children Properties

Command

NameSummarySyntax
csvExportToFileConverts a data array into a delimiter separated string and saves it into a filecsvExportToFile <pArray>,<pOptions>,<pFile>
tsvImportParse tabular data from a text into an arraytsvImport <pText>,<pOptions>,<rArray>
tsvImportFromFileParse tabular data from a TSV file into an arraytsvImportFromFile <pFile>,<pOptions>,<rArray>
tsvExportToFileConverts a data array into a delimiter separated string and saves it into a filetsvExportToFile <pArray>,<pOptions>,<pFile>
csvExportConverts a data array into a delimiter separated stringcsvExport <pArray>,<pOptions>,<rText>
csvImportParse tabular data from a text into an arraycsvImport <pText>,<pOptions>,<rArray>
csvImportFromFileParse tabular data from a CSV file into an arraycsvImportFromFile <pFile>,<pOptions>,<rArray>
tsvExportConverts a data array into a delimiter separated stringtsvExport <pArray>,<pOptions>,<rText>